set CurrentStep to integer((currentPos - startPos) * Steps / range)
set currentPos to startPos + (CurrentStep * range / Steps)
set the locV of sprite the spriteNum of me to currentPos
set the locV of sprite 4 to 160 - (CurrentStep * 75)
updateStage()
end repeat
end
on mouseEnter me
end
on mouseLeave me
end
on mouseUp me
set currentPos to the mouseV
if the mouseV < startPos then
set currentPos to startPos
end if
if the mouseV > (startPos + range) then
set currentPos to startPos + range
end if
set CurrentStep to integer((currentPos - startPos) * Steps / range)
set currentPos to startPos + (CurrentStep * range / Steps)
set the locV of sprite the spriteNum of me to currentPos
set the memberNum of sprite 50 to 289 + (4 * CurrentStep)
set the memberNum of sprite 54 to 290 + (4 * CurrentStep)
set the memberNum of sprite 58 to 291 + (4 * CurrentStep)
set the memberNum of sprite 66 to 292 + (4 * CurrentStep)
set the memberNum of sprite 70 to 293 + (4 * CurrentStep)
set the memberNum of sprite 74 to 294 + (4 * CurrentStep)
set the memberNum of sprite 78 to 295 + (4 * CurrentStep)
set the memberNum of sprite 82 to 296 + (4 * CurrentStep)
end
on getBehaviorDescription
return "Creates a slider control."
end
on getPropertyDescriptionList
set p_list to [#range: [#default: 111, #format: #integer, #comment: "How many pixels the slider can move", #range: [#min: 1, #max: 200]], #Steps: [#default: 12, #format: #integer, #comment: "How many steps the slider can move", #range: [#min: 1, #max: 20]]]